runtime.mspan.allocCache (field)

9 uses

	runtime (current package)
		malloc.go#L893: 	theBit := sys.TrailingZeros64(s.allocCache) // Is there a free object in the allocCache?
		malloc.go#L901: 			s.allocCache >>= uint(theBit + 1)
		mbitmap.go#L131: 	s.allocCache = ^aCache
		mbitmap.go#L148: 	aCache := s.allocCache
		mbitmap.go#L161: 		aCache = s.allocCache
		mbitmap.go#L172: 	s.allocCache >>= uint(bitIndex + 1)
		mcentral.go#L187: 	s.allocCache >>= s.freeindex % 64
		mheap.go#L447: 	allocCache uint64
		mheap.go#L1411: 		s.allocCache = ^uint64(0) // all 1s indicating all free.